All Questions
3 questions
2votes
1answer
105views
timed events to modulation of real-time audio
I am new very to audio programming and am having trouble figuring out the right kind of algorithm for converting control events (e.g. like MIDI) to real-time sound genesis with a buffer. At the ...
4votes
2answers
907views
How much logic can be put into an object-pooling factory class before it does more harm than good?
The main language I'm interested in doing object pooling in is AS3, which is known to need it in many cases. In the past I've always made a brand new factory class for every type I was going to try ...
3votes
1answer
311views
Processing every leaf under a node in a tree efficiently
Short version: In a tree (non-binary) with many levels of children, where each node can have multiple leaves, what is the best way to tally leaves that meet a certain condition given a node? Long, ...